@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tiro+Bangla:ital@0;1&display=swap');

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html,
body {
	overflow-x: hidden;
	width: 100vw;
	height: 100vh;
	font-family: "Poppins", sans-serif;
	font-family: "Anek Bangla", sans-serif;
}

.msg {
	font-size: 2em;
	display: flex;
	flex-direction: column;
	text-transform: uppercase;
	max-width: 100vw;
	align-items: center;
	background-color: #b00606;
}

@keyframes slide-in {
	0% {
		margin-right: -40em;
	}

	100% {
		margin-right: 0em;
	}
}

.text1 {
	color: #115d33;
	text-shadow: 0.5px 0.5px #ffffff;
	font-size: 2em;
	font-weight: 800;
	position: relative;
	/*   shorthand animation property: name | duration | iteration count */
	animation-name: text;
	animation-duration: 4s;
}

@keyframes text {
	0% {
		margin-left: -40em;
	}

	100% {
		margin-left: 0em;
	}
}

.drawer-list {
	position: fixed;
	z-index: 9999;
	right: 0;
	top: 0;
	height: 100vh;
	width: 60%;
	transform: translate(100vw, 0);
	/* ie workaround */
	-ms-transform: translatex(-100vw);
	box-sizing: border-box;
	pointer-events: none;
	padding-top: 2.6em;
	transition: width 475ms ease-out, transform 450ms ease, border-radius 0.8s 0.1s ease;
	border-bottom-left-radius: 100vw;
	background-color: #115d33;
}

.drawer-list ul {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: auto;
	overflow-x: hidden;
	pointer-events: auto;
}

.drawer-list li {
	list-style: none;
	text-transform: uppercase;
	pointer-events: auto;
	white-space: nowrap;
	box-sizing: border-box;
	transform: translateX(100vw);
	/* ie workaround */
	-ms-transform: translateX(-100vw);
}

.drawer-list li:last-child {
	margin-bottom: 1em;
}

.drawer-list li a {
	text-decoration: none;
	color: #ffffff;
	text-shadow: 1px 1px #000;
	text-align: right;
	display: block;
	padding: 0.25em;
	font-size: 1em;
	letter-spacing: 5px;
	transition: all 0.5s ease-in-out;
}

.you {
	margin-top: 35px;
}

.drawer-list li a:hover {
	cursor: pointer;
	letter-spacing: 0;
	color: #000;
	background: #b00606;
	text-shadow: 1px 1px #ffffff;
}

.social_item_inner {
	display: inline-block;
}

.social_item_inner li {
	letter-spacing: 0;
	font-size: 1em;
	transition: all 5s ease-in-out;
}

.social_item_inner li:hover a {
	transform: rotateX(360deg);
	background: transparent;
}

input.hamburger {
	display: none;
}

input.hamburger:checked~.drawer-list {
	transform: translateX(0);
	border-bottom-left-radius: 0;
}

input.hamburger:checked~.drawer-list li {
	transform: translateX(0);
}

input.hamburger:checked~.drawer-list li:nth-child(1) {
	transition: transform 1s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(2) {
	transition: transform 1s 0.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(3) {
	transition: transform 1s 0.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(4) {
	transition: transform 1s 0.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(5) {
	transition: transform 1s 0.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(6) {
	transition: transform 1s 0.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(7) {
	transition: transform 1s 0.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(8) {
	transition: transform 1s 0.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li a {
	padding-right: 0.5em;
}

input.hamburger:checked~label>i {
	background-color: transparent;
	transform: rotate(90deg);
}

input.hamburger:checked~label>i:before {
	transform: translate(-50%, -50%) rotate(45deg);
}

input.hamburger:checked~label>i:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

input.hamburger:checked~label close {
	color: #ffffff;
	width: 100%;

}

input.hamburger:checked~label open {
	color: #ffffff;
	width: 0;

}

label.hamburger {
	z-index: 99999;
	display: block;
	height: 50px;
	width: 50px;
	position: fixed;
	top: 0.5em;
	right: 2em;
}

label.hamburger:hover {
	cursor: pointer;
}

label.hamburger text close,
label.hamburger text open {
	text-transform: uppercase;
	font-size: 0.4em;
	text-align: center;
	position: absolute;
	transform: translateY(50px);
	text-align: center;
	overflow: hidden;
	transition: width 0.25s 0.35s, color 0.45s 0.35s;
}

label.hamburger text close {
	color: #ffffff;
	right: 0;
	width: 0;
}

label.hamburger text open {
	color: #ffffff;
	width: 100%;
}

label.hamburger>i {
	position: absolute;
	width: 100%;
	height: 2px;
	top: 50%;
	background-color: #ffffff;
	pointer-events: auto;
	transition-duration: 0.35s;
	transition-delay: 0.35s;
}

label.hamburger>i:before,
label.hamburger>i:after {
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	left: 50%;
	background-color: #ffffff;
	content: "";
	transition: transform 0.35s;
	transform-origin: 50% 50%;
}

label.hamburger>i:before {
	transform: translate(-50%, -14px);
}

label.hamburger>i:after {
	transform: translate(-50%, 14px);
}

.note {
	padding: 1em;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.note p {
	font-size: 0.8em;
	padding: 1em;
	text-align: justify;
	color: #ffffff;
	text-shadow: 2px 2px #000;
	border: 1px solid #ccc;
	box-shadow: 1px 1px 5px 2px #000;
	border-radius: 0.5em;
}

/**************************************************************************************/
.header {
	background-color: #b00606;
	width: 100%;
	height: auto;
	padding: 1em;
	overflow-x: hidden;
}

.header-heading {
	width: 100%;
	display: inline-block;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
}

.header-heading span {
	color: #ffffff;
	font-size: 2em;
	text-shadow: 2px 2px #000;
	font-weight: 600;
}

.header-container {
	margin: 2em;
	background-color: #115d33;
	padding: 1.5em;
	border-radius: 0.5em;
	display: flex;
	justify-content: space-around;
	align-items: center;
	text-align: center;
	transition: all 0.5s ease-in-out;
}

.header-container:hover {
	box-shadow: inset 1px 1px 5px 2px #000000;
}

.left-side {
	width: 35%;
}

.left-side>img, .left-side>iframe {
	height: 20em;
	width: 100%;
	border-radius: 0.5em;
	transition: all 0.5s ease-in-out;
}

.header-container:hover .left-side>img, .header-container:hover .left-side>iframe  {
	scale: 1.02;
}

.right-side {
	width: 60%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.right-side h2 {
	color: #ffffff;
	text-align: center;
	font-size: 2em;
	text-shadow: 2px 2px #000;
	margin-bottom: 1em;
	transition: all 0.5s ease-in-out;
}

.header-container:hover h2 {
	text-decoration: underline;
}

.right-side p {
	padding: 0 2em;
	text-align: justify;
	font-size: 1.2em;
	color: #ffffff;
	text-shadow: 0.1em 0.1em #000;
}

.right-side p a {
	text-decoration: none;
	color: #e5ff00;
}

.right-side {
	padding-bottom: 1rem;
}

.btn {
	position: relative;
	width: 100%;
	height: 0em;
	border: none;
	text-align: end;
	border: none;
}

.btn a {
	position: relative;
	display: inline-block;
	padding: 0.5em 1em;
	text-decoration: none;
	color: #ffffff;
	text-shadow: 1px 1px #000;
	background: #b00606;
	font-size: 1.2em;
	transition: all 0.5s ease-in-out;

}

.btn a:hover {
	box-shadow: 1px 1px 5px 2px #000000;
}

.btn a span {
	display: block;
	position: absolute;
	background: #00ff73;
}


.btn a span:nth-child(1) {
	left: 0;
	bottom: 0;
	width: 3px;
	height: 100%;
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 1s;
}

.btn a:hover span:nth-child(1) {
	transform: scaleY(1);
	transform-origin: bottom;
	transition: transform 1s;
}


.btn a span:nth-child(2) {
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	transform: scaleY(0);
	transform-origin: right;
	transition: transform 1s;
}

.btn a:hover span:nth-child(2) {
	transform: scaleY(1);
	transform-origin: left;
	transition: transform 1s;
}


.btn a span:nth-child(3) {
	right: 0;
	bottom: 0;
	width: 3px;
	height: 100%;
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 1s;
}

.btn a:hover span:nth-child(3) {
	transform: scaleY(1);
	transform-origin: top;
	transition: transform 1s;
}

.btn a span:nth-child(4) {
	left: 0;
	top: 0;
	width: 100%;
	height: 3px;
	transform: scaleY(0);
	transform-origin: left;
	transition: transform 1s;
}

.btn a:hover span:nth-child(4) {
	transform: scaleY(1);
	transform-origin: right;
	transition: transform 1s;
}

/****************************Animation*******************************************************/


/*******************************************************************************************/

/********************************************************************************/
.footer {
	width: 100%;
	padding: 1.5em 2em;
	background-color: #115d33;
	color: #ffffff;
}

.contact_inner {
	border-radius: 0.5em;
	background-color: #b00606;
	box-shadow: 2px 2px 10px 5px #000000;
}

.row-line h3 {
	text-align: center;
	font-size: 2.5em;
	text-shadow: 2px 2px #000;
	text-transform: uppercase;
}

.row-line p {
	padding-top: 0.5em;
	text-align: center;
	font-size: 1.3em;
	text-shadow: 2px 2px #000;
	text-transform: uppercase;
}

.contact_form_inner {
	padding: 1em 0.5em;
	display: flex;
	justify-content: space-around;
}

.contact_field {
	margin-top: 2em;
	display: flex;
	flex-direction: column;
	width: 40%;
}

.contact_field input,
.contact_field textarea {
	background-color: #b00606;
	color: #fff;
}

.contact_field input::placeholder,
.contact_field textarea::placeholder {
	color: #ffffff;
	font-weight: 500;
}

.contact_field .form-control {
	margin-bottom: 2em;
	border-radius: 0;
	border: none;
	border-bottom: 1px solid #ccc;
}

.contact_field .form-control:focus {
	box-shadow: none;
	outline: none;
	border-bottom: 2px solid #00ff73;
}

.contact_field .form-control::placeholder {
	font-size: 1em;
	letter-spacing: 1px;
}

button.contact_form_submit {
	background: linear-gradient(90deg, #b00606, #115d33, #b00606);
	border: none;
	color: #ffffff;
	text-shadow: 1px 1px #000;
	padding: 0.5em 0;
	border-radius: 35px;
	cursor: pointer;
	font-size: 1em;
}

.contact_info_sec {
	color: #ffffff;
	text-shadow: 2px 2px #000;
	text-align: center;
	background: linear-gradient(90deg, #b00606, #115d33, #b00606);
	font-size: 1em;
	font-weight: 500;
	padding: 0.5em 5em;
	border-radius: 25px;
}

.contact_info_sec h4 {
	font-size: 1.5em;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.info_single {
	margin: 25px 0px;
}

.info_single i {
	margin-right: 10px;
}

.info_single span {
	font-size: 1em;
	letter-spacing: 1px;
}

.social_item_inner {
	background-color: #115d33;
	height: 2em;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.social_item_inner li {
	list-style: none;
	transition: all 0.5s ease-in-out;
}

.social_item_inner li a i {
	font-size: 1em;
	color: #ffffff;

}

.social_item_inner li:hover {
	transform: rotateY(360deg)
}

.last {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1em;
	margin-bottom: -1em;
}

.last>span {
	padding: 0.5em 2em;
	border-radius: 0.2em;
	box-shadow: inset 0.5px 0.5px 2px 0.5px #ffffff;
	text-align: center;
	color: #ffffff;
}

.last span a {
	text-decoration: none;
	color: #ffffff;
}


/**********************************************************************************/
@media only screen and (min-width:200px) and (max-width:310px) {
	.msg {
		font-size: 1.5em;
		height: fit-content;
	}

	.text1 {
		font-size: 1.5em;
		margin-top: 0.5em;
		margin-bottom: 0.5em;
		text-shadow: 0.5px 0.5px #fff;
	}

	label.hamburger {
		top: 1em;
		right: 1em;
		height: 10px;
		width: 28px;
	}

	label.hamburger>i:before {
		transform: translate(-50%, -8px);
	}

	label.hamburger>i:after {
		transform: translate(-50%, 8px);
	}

	label.hamburger text close,
	label.hamburger text open {
		font-size: 0.4em;
		transform: translateY(20px);
	}

	.drawer-list {
		width: 100%;
		padding-top: 3em;
	}

	.drawer-list li a {
		text-align: end;
		font-size: 1.15em;
	}

	.social_item_inner li {
		margin-left: 0.3em;
		margin-right: -0.3em
	}

	.menu-tab>:last-child {
		padding-top: 0px;
	}

	.note {
		width: 100%;
		padding: 0.5em;
	}

	.note p {
		font-size: 0.5em;
	}

	.header {
		margin: 0;
		padding: 0.5em;
	}

	.header-heading {
		margin: 0;
		padding: 0;
		margin-bottom: 1em;
	}

	.header-heading span {
		font-size: 1.5em;
		font-weight: 500;
	}


	.header-container {
		height: fit-content;
		margin: 0 auto;
		padding: 1em 0.5em;
		flex-direction: column;
		margin-bottom: 1em;
	}

	.left-side {
		width: 100%;
	}

	.left-side>img, .left-side>iframe {
		height: 15em;
	}

	.right-side {
		width: 100%;
		height: 100% !important;
		padding: 0.5em;
		padding-bottom: 1em;
		justify-content: center;
		align-items: center;
		text-align: center;
		position: relative;
	}


	.right-side h2 {
		margin: 0.5em 0;
		font-size: 1.3em;
	}

	.right-side p {
		padding: 0 0.5em;
		font-size: 0.8em;
		margin-bottom: 1em;
	}

	.right-side>.btn {
		text-align: center;
		border: none;
		align-items: center;
		width: 100%;
		position: relative;
		margin-left: 0;
		margin-bottom: 1.5em;

	}

	.right-side>.btn>a {
		font-size: 1em;
		width: fit-content;
		padding: 0.5em 1em;
	}







	.footer {
		padding: 0;
	}

	.row-line {
		height: fit-content;
		width: 100%;
		justify-content: center;
		align-items: center;
	}

	.row-line p {
		font-size: 1em;
	}

	.row-line h3 {
		font-size: 1.5em;
	}

	.contact_form_inner {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		padding: 0.5em;
	}

	.contact_field {
		padding: 0.5em;
		width: 100%;
	}

	.contact_field input,
	.contact_field textarea,
	.contact_field button {
		width: 100%;
		margin: 0 auto
	}

	.contact_info_sec {
		position: relative;
	}

	.info_single span {
		font-size: 0.8em;
	}

	.info_single i {
		font-size: 0.8em;
		margin-right: 1em;
	}

	.last {
		display: flex;
		flex-direction: column;
	}

	.last span,
	.last span a {
		text-transform: uppercase;
		font-size: 0.5em;
		box-shadow: none;
	}
}

@media only screen and (min-width:311px) and (max-width:426px) {
	.msg {
		font-size: 1.5em;
		height: fit-content;
	}

	.text1 {
		font-size: 1.5em;
		margin: 0.5em;
	}

	label.hamburger {
		top: 1em;
		right: 1em;
		height: 10px;
		width: 30px;
	}

	label.hamburger>i:before {
		transform: translate(-50%, -10px);
	}

	label.hamburger>i:after {
		transform: translate(-50%, 10px);
	}

	label.hamburger text close,
	label.hamburger text open {
		font-size: 0.4em;
		transform: translateY(20px);
	}

	.drawer-list {
		width: 100%;
		padding-top: 3em;
	}

	.drawer-list li a {
		text-align: end;
		font-size: 1.15em;
	}

	.social_item_inner li {
		margin-left: 0.5em;
	}

	.menu-tab>:last-child {
		padding-top: 0px;
	}

	.note {
		width: 100%;
		padding: 0.5em;
	}

	.note p {
		font-size: 0.5em;
	}

	.header {
		margin: 0;
		padding: 0.5em;
	}

	.header-heading {
		margin: 0;
		padding: 0;
		margin-bottom: 1em;
	}

	.header-heading span {
		font-size: 1.5em;
		font-weight: 500;
	}


	.header-container {
		height: fit-content;
		margin: 0 auto;
		padding: 1em 0.5em;
		flex-direction: column;
		margin-bottom: 1em;
	}

	.left-side {
		width: 100%;
	}

	.left-side>img, .left-side>iframe {
		height: 15em;
	}

	.right-side {
		width: 100%;
		height: 100% !important;
		padding: 0.5em;
		padding-bottom: 1em;
		justify-content: center;
		align-items: center;
		text-align: center;
		position: relative;
	}


	.right-side h2 {
		margin: 0.5em 0;
		font-size: 1.3em;
	}

	.right-side p {
		padding: 0 0.5em;
		font-size: 0.8em;
		margin-bottom: 1em;
	}

	.right-side>.btn {
		text-align: center;
		border: none;
		align-items: center;
		width: 100%;
		position: relative;
		margin-left: 0;
		margin-bottom: 1.5em;

	}

	.right-side>.btn>a {
		font-size: 1em;
		width: fit-content;
		padding: 0.5em 1em;
	}

	.footer {
		padding: 0;
	}

	.row-line {
		height: fit-content;
		width: 100%;
		justify-content: center;
		align-items: center;
	}

	.row-line p {
		font-size: 1em;
	}

	.row-line h3 {
		font-size: 1.5em;
	}

	.contact_form_inner {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		padding: 0.5em;
	}

	.contact_field {
		padding: 0.5em;
		width: 100%;
	}

	.contact_field input,
	.contact_field textarea,
	.contact_field button {
		width: 100%;
		margin: 0 auto
	}

	.contact_info_sec {
		position: relative;
	}

	.info_single span {
		font-size: 0.8em;
	}

	.info_single i {
		font-size: 0.8em;
		margin-right: 1em;
	}

	.last {
		display: flex;
		flex-direction: column;
	}

	.last span,
	.last span a {
		text-transform: uppercase;
		font-size: 0.5em;
		box-shadow: none;
	}
}

@media only screen and (min-width: 426px) and (max-width:768px) {
	.msg {
		font-size: 1.5em;
		height: fit-content;
	}

	label.hamburger {
		top: 1.5em;
		right: 1.5em;
		height: 10px;
		width: 45px;
	}

	label.hamburger text close,
	label.hamburger text open {
		font-size: 0.5em;
		transform: translateY(30px);
	}

	.drawer-list {
		width: 100%;
		height: 100vh;
	}

	.drawer-list ul {
		margin-top: 1.5em;
	}

	.drawer-list li a {
		font-size: 1em;

	}

	.menu-tab>:last-child {
		padding-top: -10px;
	}


	.note {
		width: 100%;
	}

	.note p {
		font-size: 0.7em;
	}


	.header {
		margin: 0;
		padding: 0.5em;
	}

	.header-heading {
		margin: 0;
		padding: 0;
		margin-bottom: 1em;
	}

	.header-heading span {
		font-size: 1.5em;
		font-weight: 500;
	}


	.header-container {
		height: fit-content;
		margin: 0 auto;
		gap: 1em;
		padding: 1em 0.5em;
		margin-bottom: 1em;
	}

	.left-side {
		width: 55%;
	}

	.left-side>img, .left-side>iframe {
		height: 15em;
		width: 100%;
	}

	.right-side {
		width: 100%;
		height: 100% !important;
		padding: 0.5em;
		padding-bottom: 1em;
		justify-content: center;
		align-items: center;
		text-align: center;
		position: relative;
	}


	.right-side h2 {
		margin: 0.5em 0;
		font-size: 1.5em;
	}

	.right-side p {
		font-size: 1em;
		margin-bottom: 1em;
	}

	.right-side>.btn {
		text-align: end;
		border: none;
		width: 100%;
		position: relative;
		margin-left: 0;
		margin-bottom: 1.5em;

	}

	.right-side>.btn>a {
		font-size: 1em;
		width: fit-content;
		padding: 0.5em 1em;
	}









	.footer {
		padding: 0;
	}

	.row-line {
		height: fit-content;
		width: 100%;
		justify-content: center;
		align-items: center;
	}

	.row-line p {
		font-size: 1em;
	}

	.row-line h3 {
		font-size: 1.5em;
	}

	.contact_form_inner {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		padding: 0.5em;
	}

	.contact_field {
		padding: 0.5em 3em;
		width: 100%;
	}

	.contact_field input,
	.contact_field textarea,
	.contact_field button {
		width: 100%;
		margin: 0 auto
	}

	.contact_info_sec {
		position: relative;
	}

	.info_single span {
		font-size: 0.8em;
	}

	.info_single i {
		font-size: 0.8em;
		margin-right: 1em;
	}

	.last {
		display: flex;
		flex-direction: column;
	}

	.last span,
	.last span a {
		text-transform: uppercase;
		font-size: 0.5rem;
		box-shadow: none;
	}
}

@media only screen and (min-width: 769px) and (max-width:1025px) {
	.msg {
		font-size: 1.5em;
		height: fit-content;
	}


	label.hamburger {
		top: 1em;
		right: 1em;
		height: 10px;
		width: 45px;
	}

	label.hamburger text close,
	label.hamburger text open {
		font-size: 0.5em;
		transform: translateY(30px);
	}

	.drawer-list {
		width: 60%;
		height: 100vh;
	}

	.drawer-list ul {
		margin-top: 1em;
	}

	.drawer-list li a {
		font-size: 1em;
	}

	.container-animation {
		width: 100%;
	}

	.text1 {
		text-align: center;
	}

	.note {
		width: 100%;
		padding: 0 0.5em;
		margin-top: 1em;
	}

	.note p {
		font-size: 0.8em;
	}

	.header {
		margin: 0;
		padding: 0.5em;
	}

	.header-heading {
		padding: 0;
		margin: 1em;
	}

	.header-heading span {
		font-size: 1.5em;
		font-weight: 500;
	}


	.header-container {
		height: fit-content;
		margin: 0 auto;
		gap: 1em;
		padding: 1em 1.5em;
		margin-bottom: 1em;
	}

	.left-side {
		width: 40%;
	}

	.left-side>img, .left-side>iframe {
		height: 15em;
	}

	.right-side {
		width: 100%;
		height: 100% !important;
		padding: 0.5em;
		padding-bottom: 1em;
		justify-content: center;
		align-items: center;
		text-align: center;
		position: relative;
	}


	.right-side h2 {
		margin: 0.5em 0;
		font-size: 1.5em;
	}

	.right-side p {
		font-size: 1em;
		margin-bottom: 1em;
	}

	.right-side>.btn {
		text-align: end;
		border: none;
		width: 100%;
		position: relative;
		margin-left: 0;
		margin-bottom: 1.5em;

	}

	.right-side>.btn>a {
		font-size: 1em;
		width: fit-content;
		padding: 0.5em 1em;
	}


	.row-line {
		padding: 0 1em;
		justify-content: space-between;
	}

	.row-line p {
		font-size: 1em;
	}

	.row-line h3 {
		font-size: 1.5em;
	}

	.contact_info_sec {
		width: 20em;
		padding: 0.2em;
	}

	.contact_info_sec h4 {
		font-size: 1em;
	}

	.info_single span {
		font-size: 0.7em;
	}

	.last span {
		font-size: 0.7em;
	}
}

@media only screen and (min-width: 1441px) and (max-width:2561px) {
	.msg {
		height: fit-content;
	}

	.container-animation span {
		font-size: 4em;
	}

	.front-face p {
		font-size: 1.5em;
	}

	label.hamburger {
		margin-top: 2em;
		right: 2em;
		height: 1em;
		width: 3em;
	}

	label.hamburger>i,
	label.hamburger>i:before,
	label.hamburger>i:after {
		height: 5px;
	}

	label.hamburger>i:before {
		transform: translate(-50%, -25px);
	}

	label.hamburger>i:after {
		transform: translate(-50%, 25px);
	}

	label.hamburger text close,
	label.hamburger text open {
		transform: translateY(60px);
		font-size: 1em;
	}

	.drawer-list {
		width: 60%;
		height: 100vh;
	}

	.drawer-list ul {
		margin-top: 4em;
	}

	.drawer-list li a {
		font-size: 2em;
	}

	.menu-tab li a {
		font-size: 0.8em;
	}

	.note {
		padding: 1em;
		font-size: 2em;
	}

	.note p {
		font-size: 0.7em;
	}


	.header {
		margin: 0;
		padding: 3em;
	}

	.header-heading {
		padding: 0;
		margin-bottom: 2.5em;
	}

	.header-heading span {
		font-size: 4em;
		font-weight: 500;
	}


	.header-container {
		height: fit-content;
		margin: 0 auto;
		gap: 1em;
		padding: 2em;
		margin-bottom: 3em;
	}

	.left-side {
		width: 40%;
	}

	.left-side>img, .left-side>iframe {
		height: 35em;
	}

	.right-side {
		width: 100%;
		height: 100% !important;
		padding: 1.5em;
		padding-bottom: 3em;
		justify-content: center;
		align-items: center;
		text-align: center;
		position: relative;
	}


	.right-side h2 {
		margin: 1em 0;
		font-size: 4em;
	}

	.right-side p {
		font-size: 2.5em;
	}

	.right-side>.btn {
		text-align: end;
		border: none;
		width: 100%;
		position: relative;
		margin-bottom: 5em;

	}

	.right-side>.btn>a {
		font-size: 3em;
		width: fit-content;
		padding: 0.5em 1em;
	}



	.row-line h3 {
		font-size: 5em;
	}

	.row-line p {
		font-size: 3em;
	}

	.contact_form_inner {
		padding: 1em 0.5em;
	}

	.contact_field input,
	.contact_field textarea {
		margin-top: 2em;
	}

	.contact_field textarea {
		padding-bottom: 1.5em;
		border-bottom: 3px solid #fff;
	}

	.contact_field button {
		margin-top: 1em;
	}

	.contact_field>.form-control {
		padding-top: 3em;
		border-bottom: 3px solid #fff;
	}

	.contact_field:focus .form-control:focus {
		padding-bottom: 2em;
		border-bottom: 2px solid #00ff73;
	}

	.contact_field .form-control::placeholder {
		font-size: 3em;
	}

	button.contact_form_submit {
		font-size: 2.5em;
	}

	.contact_info_sec {
		width: 40%;
		height: auto;
		font-size: 2em;
		padding: 1.5em 1em;
	}

	.contact_info_sec h4 {
		font-size: 2em;
	}

	.social_item_inner {
		height: 3.5em;
	}

	.social_item_inner li a i {
		font-size: 2.5em;
	}

	.last>span {
		font-size: 1.5em;
	}

	.last span a {
		text-decoration: none;
		color: #e5ff00;
	}
}